std::forward_list::remove
From Cppreference
< cpp | container | forward list
| void remove( const T& value );
| (C++0x feature) | |
Removes all elements equal to the given value value from the container.
Contents |
Parameters
| value | - | value of the elements to remove |
Return value
(none)
Example
| This section is incomplete |
Complexity
linear in the size of the container
See also
| removes elements satisfying specific condition (public member function) | |